If you want to sethealth/setmaxhealth in a spawn hook (and potentially startround hooks), make sure to use a next frame timer!

Example:

Wrong:
function spawn_hook(p)
	parse('sethealth ' .. id .. ' 50')
end

Right:
function spawn_hook(p)
	timer(0, 'parse', 'sethealth ' .. p .. ' 50')
end
